home *** CD-ROM | disk | FTP | other *** search
/ Power Tools for Macintosh / Power Tools for Macintosh (SoftBit)(1992).iso / Applications / Alpha 4.01 / ACMDS / Time⁄Date Macros < prev    next >
Text File  |  1990-08-14  |  595b  |  31 lines

  1. ; Macros for time and date insertion:
  2. ;
  3. ; by Karl J. Smith
  4. ;
  5. ; email: ksmith@jarthur.claremont.edu
  6. ;
  7. ; 8/10/90
  8.  
  9. (define insertTime
  10.     type " "
  11. ; Put one of the following characters in the above type statement:
  12. ; S - time with seconds: 6:55:21 PM
  13. ; <space> - time: 6:55 PM
  14.     setMark
  15.     backwardChar
  16.     markHilite
  17.     acmd "Paste Time"
  18. )
  19.  
  20. (define insertDate
  21.     type "S"
  22. ; Put one of the following characters in the above type statement:
  23. ; S - short date: 8/10/90
  24. ; L - long date: Friday, August 10, 1990
  25. ; A - abbrev date: Fri, Aug 10, 1990
  26.     setMark
  27.     backwardChar
  28.     markHilite
  29.     acmd "Paste Date"
  30. )
  31.